home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 January / macformat-020.iso / Shareware City / Developers / Think C dcmd 1.0.1 ƒ / Think Put Lib source / PutSpacesTo.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-31  |  133 b   |  10 lines  |  [TEXT/KAHL]

  1.     extern    short            __putMark;
  2.  
  3. void PutChar(char c);
  4.  
  5. void PutSpacesTo(int endpos)
  6. {
  7.     while ( __putMark < endpos )
  8.         PutChar( 0x20 );
  9. }
  10.